home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / PIL / GimpGradientFile.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  3KB  |  98 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. from math import pi, log, sin, sqrt
  5. import string
  6. EPSILON = 1e-10
  7.  
  8. def linear(middle, pos):
  9.     if pos <= middle:
  10.         if middle < EPSILON:
  11.             return 0
  12.         else:
  13.             return 0.5 * pos / middle
  14.     else:
  15.         pos = pos - middle
  16.         middle = 1 - middle
  17.         if middle < EPSILON:
  18.             return 1
  19.         else:
  20.             return 0.5 + 0.5 * pos / middle
  21.  
  22.  
  23. def curved(middle, pos):
  24.     return pos ** (log(0.5) / log(max(middle, EPSILON)))
  25.  
  26.  
  27. def sine(middle, pos):
  28.     return (sin(-pi / 2 + pi * linear(middle, pos)) + 1) / 2
  29.  
  30.  
  31. def sphere_increasing(middle, pos):
  32.     return sqrt(1 - (linear(middle, pos) - 1) ** 2)
  33.  
  34.  
  35. def sphere_decreasing(middle, pos):
  36.     return 1 - sqrt(1 - linear(middle, pos) ** 2)
  37.  
  38. SEGMENTS = [
  39.     linear,
  40.     curved,
  41.     sine,
  42.     sphere_increasing,
  43.     sphere_decreasing]
  44.  
  45. class GradientFile:
  46.     gradient = None
  47.     
  48.     def getpalette(self, entries = 256):
  49.         palette = []
  50.         ix = 0
  51.         (x0, x1, xm, rgb0, rgb1, segment) = self.gradient[ix]
  52.         for i in range(entries):
  53.             x = i / float(entries - 1)
  54.             while x1 < x:
  55.                 ix = ix + 1
  56.                 (x0, x1, xm, rgb0, rgb1, segment) = self.gradient[ix]
  57.             w = x1 - x0
  58.             if w < EPSILON:
  59.                 scale = segment(0.5, 0.5)
  60.             else:
  61.                 scale = segment((xm - x0) / w, (x - x0) / w)
  62.             r = chr(int(255 * ((rgb1[0] - rgb0[0]) * scale + rgb0[0]) + 0.5))
  63.             g = chr(int(255 * ((rgb1[1] - rgb0[1]) * scale + rgb0[1]) + 0.5))
  64.             b = chr(int(255 * ((rgb1[2] - rgb0[2]) * scale + rgb0[2]) + 0.5))
  65.             a = chr(int(255 * ((rgb1[3] - rgb0[3]) * scale + rgb0[3]) + 0.5))
  66.             palette.append(r + g + b + a)
  67.         
  68.         return (string.join(palette, ''), 'RGBA')
  69.  
  70.  
  71.  
  72. class GimpGradientFile(GradientFile):
  73.     
  74.     def __init__(self, fp):
  75.         if fp.readline()[:13] != 'GIMP Gradient':
  76.             raise SyntaxError, 'not a GIMP gradient file'
  77.         
  78.         count = int(fp.readline())
  79.         gradient = []
  80.         for i in range(count):
  81.             s = string.split(fp.readline())
  82.             w = map(float, s[:11])
  83.             x0 = w[0]
  84.             x1 = w[2]
  85.             xm = w[1]
  86.             rgb0 = w[3:7]
  87.             rgb1 = w[7:11]
  88.             segment = SEGMENTS[int(s[11])]
  89.             cspace = int(s[12])
  90.             if cspace != 0:
  91.                 raise IOError, 'cannot handle HSV colour space'
  92.             
  93.             gradient.append((x0, x1, xm, rgb0, rgb1, segment))
  94.         
  95.         self.gradient = gradient
  96.  
  97.  
  98.